home *** CD-ROM | disk | FTP | other *** search
/ You're the Director / You're The Director.iso / pc / pcf / ds.dir / 00263_tabletiles.ls < prev    next >
Encoding:
Text File  |  1995-10-08  |  487 b   |  32 lines

  1. on mouseDown
  2.   if the clickOn < 21 then
  3.     exit
  4.   end if
  5.   if the controlDown then
  6.     exit
  7.   end if
  8.   set yu to the clickOn - 20
  9.   initsel()
  10.   setAt(selected, yu, 1)
  11.   setbar()
  12.   if the doubleClick then
  13.     repeat with x = 21 to 44
  14.       if (yu + 20) = x then
  15.         playmovn4(yu)
  16.         exit
  17.       end if
  18.     end repeat
  19.   end if
  20. end
  21.  
  22. on mouseUp
  23.   if the clickOn < 21 then
  24.     exit
  25.   end if
  26.   if the controlDown then
  27.     playmovn()
  28.   else
  29.     set yu to the clickOn - 20
  30.   end if
  31. end
  32.